home *** CD-ROM | disk | FTP | other *** search
/ The Very Best of Atari Inside / The Very Best of Atari Inside 1.iso / mint / mntlib43 / mntlib / getdtabl.c < prev    next >
C/C++ Source or Header  |  1993-10-11  |  201b  |  16 lines

  1. #include <stdio.h>
  2. #include <mintbind.h>
  3. #include <support.h>
  4. #include <unistd.h>
  5.  
  6. extern int __mint;
  7.  
  8. int
  9. getdtablesize()
  10. {
  11.     if (__mint < 7)
  12.         return FOPEN_MAX;
  13.  
  14.     return (int)Sysconf(_SC_OPEN_MAX);
  15. }
  16.